home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo.
- type v900.txt
- pause
- :start
- cls
- echo After running SETUP and trying out the program, if your
- echo sound board will not play the sound files or acts
- echo unpredictably print out the Fixme file (option 3).
- echo.
- echo.
- echo Choose one of the selections below:
- echo.
- echo 1. RUN Virtural Reality Information.
- echo 2. SETUP the configuration to match your PC's hardware.
- echo (Use this option to install the software.)
- echo 3. Print the Fixme file.
- echo 4. QUIT.
- echo.
- echo Please enter the number for your choice. Enter 1-4 only.
- query
- if errorlevel = 5 goto invalid
- if errorlevel = 4 goto end
- if errorlevel = 3 goto print
- if errorlevel = 2 goto reset
- if errorlevel = 1 goto run
-
- :invalid
- cls
- echo Invalid option
- goto start
- goto end
-
- REM Run game
- :run
- v900.bat
- goto end
-
- Rem print out
- :print
- print %1:\sop10000\fixdma.txt
- goto start
-
- REM reconfig setup
- :reset
- cls
- echo.
- pause
- call SETUP.bat
- goto start
- goto end
- :end
-